home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-145.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  54 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12388);
  10.  script_version ("$Revision: 1.3 $");
  11. script_cve_id("CAN-2003-0244");
  12.             
  13.  name["english"] = "RHSA-2003-145: kernel";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host is running a kernel which is vulnerable to a remote denial 
  19. of service.  
  20.  
  21. The Linux kernel handles all the low-level functionality of the Operating
  22. System.  This version of the kernel is vulnerable to a flaw wherein a remote
  23. attacker can forge source IP addresses in such a way as to create a very
  24. long routing hash chain.  An attacker, exploiting this flaw, would need
  25. the ability to craft TCP/IP packets destined to (or through) the Linux kernel.
  26. A successful attack would shut down the server.
  27.  
  28. Solution : http://rhn.redhat.com/errata/RHSA-2003-145.html
  29. Risk factor : High";
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Check for the version of the kernel package";
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  39.  family["english"] = "Red Hat Local Security Checks";
  40.  script_family(english:family["english"]);
  41.  
  42.  script_dependencies("ssh_get_info.nasl");
  43.  script_require_keys("Host/RedHat/rpm-list");
  44.  exit(0);
  45. }
  46.  
  47.  
  48. include("rpm.inc");
  49.  
  50. if ( rpm_check( reference:"kernel-2.4.18-e.31", yank:"e", prefix:"kernel-", release:"RHEL2.1") ) 
  51.     security_hole(0);
  52.  
  53.  
  54.